home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000147_shifeux@hotmail.com_Wed Nov 14 16:48:56 EST 2001.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  62 lines

  1. Article: 12967 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: shifeux@hotmail.com (Shifeux)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: ZModem Problems
  6. Date: 14 Nov 2001 13:29:54 -0800
  7. Organization: http://groups.google.com/
  8. Lines: 44
  9. Message-ID: <336f652d.0111141329.b5d3ad@posting.google.com>
  10. NNTP-Posting-Host: 146.145.217.201
  11. Content-Type: text/plain; charset=ISO-8859-1
  12. Content-Transfer-Encoding: 8bit
  13. X-Trace: posting.google.com 1005773394 30380 127.0.0.1 (14 Nov 2001 21:29:54 GMT)
  14. X-Complaints-To: groups-abuse@google.com
  15. NNTP-Posting-Date: 14 Nov 2001 21:29:54 GMT
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:12967
  17.  
  18. Hello,  I am using C-Kermit 7 to connect to a remote host which
  19. supports the zmodem transfer protocol.  I am able to transfer files
  20. easily using interactive mode but I get the following error using my
  21. script after issuing a receive * command:
  22.  
  23. Readline:TIMEOUT
  24. Retry 0: Got TIMEOUT
  25.  
  26. This "timeout" seems to be the same time (after 10 seconds) regardless
  27. of what I set my client timeout to.  My modem settings are as follows.
  28.  
  29. set file type binary
  30. set proto z {rz} {rz -a} {sz %s} {sz -a %s}
  31. set exit on-disconnect on
  32. set exit warning off
  33. ; set macro error on
  34. set receive timeout 94
  35. set send timeout 15 dynamic
  36. set modem type usrobotics
  37. set line /dev/tty01
  38. set speed 38400
  39. set flow xon/xoff
  40.  
  41. utput \13 
  42.  
  43. output \%s\13
  44.  
  45. input 20 {Username:}
  46. output USER\13
  47.  
  48. input 20 {Password:}
  49. output PASS\13
  50.  
  51. input 20 {Transfer id:}
  52. output PASSAGAIN\13
  53.  
  54. input 20 {Enter choice:}
  55. output 2\13
  56.  
  57. receive *
  58.  
  59. Any help would be appreciated.
  60.  
  61. Thanks
  62.